home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / qbasicpg.zip / LOCATE-2.BAS < prev    next >
BASIC Source File  |  1989-08-31  |  155b  |  11 lines

  1. ' LOCATE-2.BAS
  2. ' This program demonstrates the first step in creating animation.
  3.  
  4. CLS
  5.  
  6. FOR i% = 1 TO 80
  7.     LOCATE 10, i%
  8.     PRINT "X"
  9. NEXT i%
  10.  
  11.